home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Light ROM 3
/
Light ROM 3 - Disc 2.iso
/
programs
/
pc
/
l_parser
/
lparser3.exe
/
DISTANT.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-12-08
|
920b
|
36 lines
@echo off
rem --- L-System Parser/Mutator --- Lj Lapre -------------------------------
rem
rem Exec 'distant ls-file' (without .ls extension!) to get multiple children
rem from a mother form. Each child is 10 generations removed from the mother.
rem
rem Try 'distant lsys00'
rem
rem Mother
rem ┌─────┬─────┬┴────┬─────┬─────┬──────┐
rem │ │ │ │ │ │ │
rem │ │ │ │ │ │ │
rem │ │ │ │ │ │
rem Child Child Child Child Child Child Etc.
rem
rem The form on the screen will be stored in the file mutation.ls.
rem
rem The -s500 option is to limit the size off the l-string to 500K.
rem The -p50000 option is to limit the size off the form to 50000 polygons.
rem
rem The mother
lparser %1
lviewer -f output
rem The children
:begin
lparser -s500 -p50000 -u5 %1
lviewer -f output
goto begin